UNPKG

@octopusdeploy/design-system-components

Version:
16 lines (15 loc) 474 B
import * as React from "react"; export interface DialogBaseProps { children?: React.ReactNode; open: boolean; onClose?: () => void; onClosed?: () => void; closeOnEscape?: boolean; closeOnBackdropClick?: boolean; accessibleName?: string; autoFocusFirstElement?: boolean; } export declare function DialogBase(props: DialogBaseProps): import("react/jsx-runtime").JSX.Element; export declare namespace DialogBase { var displayName: string; }