import React from 'react'; import type { SharedProps } from '@coinbase/cds-common/types/SharedProps'; export type AccessibilityAnnouncerProps = Omit< { /** The aria-live attribute * @default polite */ politeness?: React.AriaAttributes['aria-live']; /** The message to announce */ message?: string | null; }, 'children' > & SharedProps; export declare const AccessibilityAnnouncer: React.MemoExoticComponent< React.ForwardRefExoticComponent< Omit< { /** The aria-live attribute * @default polite */ politeness?: React.AriaAttributes['aria-live']; /** The message to announce */ message?: string | null; }, 'children' > & SharedProps & React.RefAttributes > >; //# sourceMappingURL=AccessibilityAnnouncer.d.ts.map