Files
wallet/styled-system/patterns/box.d.ts
2023-08-16 08:23:27 +00:00

21 lines
501 B
TypeScript

/* eslint-disable */
import type { SystemStyleObject, ConditionalValue } from '../types'
import type { PropertyValue } from '../types/prop-type'
import type { Properties } from '../types/csstype'
import type { Tokens } from '../tokens'
export type BoxProperties = {
}
type BoxOptions = BoxProperties & Omit<SystemStyleObject, keyof BoxProperties >
interface BoxPatternFn {
(options?: BoxOptions): string
raw: (options: BoxOptions) => BoxOptions
}
export declare const box: BoxPatternFn;