export type Styled = (...args: (keyof C | { [K in keyof C]?: any; })[]) => { className: string; style: React.CSSProperties; }; export declare function useStyled(classes: C, styleProvider: { [index: string]: string | undefined; }, styleOverrides?: { [K in keyof C]?: { remove?: boolean; className?: string; style?: React.CSSProperties; }; }): Styled;