import type { Theme } from "../theme/types"; type GuiPropRecord = Record; export type Sx = Partial | ((theme: Theme) => Partial) | undefined; export declare function resolveSx(sx: Sx, theme: Theme): Partial; export declare function mergeSx(...sxList: Array>): Sx; export {};