export type GlossaryAlphabetProps = Readonly<{ /** Only EN is supported for now, passing in other locales will not change the alphabet until we support more locales in the ui component. * Once this change has been made, we will make the locale prop required. */ locale?: string; getLetterProps: (letter: string) => { href?: string; ariaLabel: string; isDisabled: boolean; }; }> & Omit, "children">; export declare function GlossaryAlphabet({ locale, getLetterProps, className, ref, ...rest }: GlossaryAlphabetProps): import("react").JSX.Element; export declare namespace GlossaryAlphabet { var displayName: string; } //# sourceMappingURL=GlossaryAlphabet.d.ts.map