export declare const Size: { readonly Small: "small"; readonly Default: "default"; readonly Large: "large"; readonly XLarge: "xlarge"; }; export type Size = (typeof Size)[keyof typeof Size]; export declare const sizeMap: Record; interface AccessibleFunctionParams { 'aria-labelledby'?: string; 'aria-label'?: string; title?: string | null; titleId?: string; } type AccessibleFunctionReturnType = { 'aria-labelledby'?: string; 'aria-label'?: string; } | { 'aria-hidden': true; alt: ''; }; export declare function generateAccessibleProps(role: 'img' | 'presentation', glyphName: string, { ['aria-label']: ariaLabel, ['aria-labelledby']: ariaLabelledby, title, titleId, }: AccessibleFunctionParams): AccessibleFunctionReturnType; export declare function getGlyphLabel(name: string): string; export {}; //# sourceMappingURL=glyphCommon.d.ts.map