export interface StyledProps { className?: string; } export type PropsWithClassName
= P & { className?: string; }; export type PropsWithClassNames = P & { classNames?: { [Key in K]?: string; }; }; //# sourceMappingURL=style.d.ts.map