import type { StyledOptions } from "."; export interface WithStyledPropsOptions { preprocessed: boolean; className: string; propsToTransform?: StyledOptions["props"]; componentProps: Record

; classProps?: C[]; } export declare function withStyledProps({ propsToTransform, componentProps, classProps, preprocessed, className, }: WithStyledPropsOptions): { styledProps: Partial>; mask: number; className: string; };