import { PseudoProps } from '@spicy-ui/styled-system';
import { AllSystemProps } from './system';
export interface SxProp {
    sx?: Partial<Record<keyof AllSystemProps & PseudoProps, any>>;
}
export declare function sxMixin(p: SxProp): any;
