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