/** * The state and element props shared by every popup built on the dialog store — * `Dialog.Popup`, `AlertDialog.Popup` and `Drawer.Popup`. */ export declare function useDialogPopupProps(): { store: import("../store/DialogStore").DialogStore; open: boolean; nested: boolean; nestedDialogOpen: boolean; nestedDialogCount: number; transitionStatus: import("../../internals/useTransitionStatus").TransitionStatus; props: { role: "dialog" | "alertdialog"; accessibilityViewIsModal: boolean; accessibilityLabelledBy: string | undefined; 'aria-modal': boolean; 'aria-labelledby': string | undefined; 'aria-describedby': string | undefined; onStartShouldSetResponder: () => boolean; }; }; //# sourceMappingURL=useDialogPopupProps.d.ts.map