declare type BaseIconProps = { color?: string; size?: number | string; }; export declare const Close: ({ color, size, ...props }: BaseIconProps) => JSX.Element; export declare const ChevronDown: ({ color, size, ...props }: BaseIconProps) => JSX.Element; declare const baseIcons: { Close: ({ color, size, ...props }: BaseIconProps) => JSX.Element; ChevronDown: ({ color, size, ...props }: BaseIconProps) => JSX.Element; }; export default baseIcons;