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

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