export interface IIconProps { color?: string; card?: boolean; white?: boolean; active?: boolean; viewBox?: string; opacity?: string; disabled?: boolean; selected?: boolean; height?: number | string; width?: number | string; isTransparent?: boolean; } export declare const getIconColor: ({ active, card }: IIconProps) => string;