/// export interface DIconBaseProps extends React.SVGAttributes { dSize?: number | string | [number | string, number | string]; dTheme?: 'primary' | 'success' | 'warning' | 'danger'; dRotate?: number; dSpin?: boolean; dSpinSpeed?: number | string; } export declare function useIconDefinition(props: DIconBaseProps): import("react").SVGAttributes;