import { StyledProps, Sx, ThemedOptions } from './types'; import { DripsyFinalTheme } from '../declarations'; import { DefaultStyleKey } from '../css/types'; declare type ThemedOptionsWithoutFunctionStyle = Omit, DefaultStyleKey> & Record; export declare function mapPropsToStyledComponent(props: StyledProps & { breakpoint: number; theme: DripsyFinalTheme; style?: any; }, options: ThemedOptionsWithoutFunctionStyle): { styles: any[] | ((props?: any) => any[]); }; export {};