export type ColorModeIconProps = {
    mode?: 'dark' | 'light' | string;
    className?: string;
};
export declare function ColorModeIcon(props: ColorModeIconProps): JSX.Element;
