import React from 'react'; import { type Polymorphic } from '@hitagi/utils/types'; import { type AwardIconVariant, type AwardProps } from './common'; type AwardIconUnstyledProps = AwardProps & { variant?: AwardIconVariant; theme: any; } & Omit, 'id' | 'viewBox' | 'fill'>; export declare const AwardIconUnstyled: Polymorphic.Component<'svg', AwardIconUnstyledProps>; export {};