import Award from '../utils/awards'; type IdProps = { id: Award.Id; }; type EnumProps = { enum: Award.Enum; }; export type AwardProps = IdProps | EnumProps; export declare const awardPropsToId: (props: AwardProps) => Award.Id | undefined; export declare const omitAwardProps:

(props: P) => { [K2 in Exclude]: P[K2]; }; export declare const pickAwardProps:

(props: P) => AwardProps; export type AwardIconVariant = 'circled' | 'unwrapped'; export {};