import { Options } from './index.js'; export declare class Announcer { id: string; style: string; region: HTMLElement; constructor(); getRegion(): HTMLElement | null; createRegion(): HTMLElement; announce(message: string, delay?: number): Promise; } export type PageAnnouncementOptions = Pick; export declare function getPageAnnouncement({ headingSelector, announcements }: PageAnnouncementOptions): string | undefined;