interface AlertDialogContextData { ownerID: string; panelID: string; titleID: string; descriptionID: string; } export declare const AlertDialogContext: import("solid-js").Context; /** * Reads the nearest `AlertDialog`'s internal context, which holds the * generated ids for its title, description and panel. Throws when called * outside an `AlertDialog`. * * @see {@link https://github.com/lxsmnsyc/terracotta/blob/main/docs/components/alert-dialog.md} */ export declare function useAlertDialogContext(componentName: string): AlertDialogContextData; export {}; //# sourceMappingURL=AlertDialogContext.d.ts.map