import { IconName } from '@fortawesome/fontawesome-svg-core';
export interface IconProps {
    name: IconName;
    size?: 'regular' | 'large' | 'small' | 'xsmall';
    variant?: 'light' | 'regular' | 'solid';
    theme?: 'primary' | 'success' | 'danger' | 'warning' | 'light' | 'dark' | 'weak';
    testID?: string;
}
export { IconName };
//# sourceMappingURL=type.d.ts.map