import type { FC } from "react"; import type { TranslatableText } from "../../region"; /** * The properties to configure the Narrator component. */ export interface NarratorProps { /** * The message for the screen-reader to announce. */ message?: TranslatableText; /** * The aria-live attribute value for the narrator. Defaults to 'polite'. */ "aria-live"?: "off" | "polite" | "assertive"; } declare const Narrator: FC; export default Narrator;