UNPKG

carbon-react

Version:

A library of reusable React components for easily building user interfaces.

28 lines (27 loc) 1.1 kB
import { ContentPaddingInterface, DialogProps } from "./dialog.component"; type StyledDialogTitleProps = { fullscreen?: boolean; hasSubtitle?: boolean; showCloseIcon?: boolean; }; declare const DialogPositioner: import("styled-components").StyledComponent<"div", any, { theme: object; } & { fullscreen?: boolean; }, "theme">; declare const StyledDialogContent: import("styled-components").StyledComponent<"div", any, { theme: object; } & ContentPaddingInterface & { disableContentPadding?: boolean; fullscreen?: boolean; hasHeader?: boolean; }, "theme">; declare const StyledDialog: import("styled-components").StyledComponent<"div", any, Required<Pick<DialogProps, "size">> & { backgroundColor: string; dialogHeight?: string; fullscreen?: boolean; highlightVariant?: string; pagesStyling?: boolean; } & ContentPaddingInterface, never>; declare const StyledDialogTitle: import("styled-components").StyledComponent<"div", any, StyledDialogTitleProps, never>; export { DialogPositioner, StyledDialog, StyledDialogTitle, StyledDialogContent, };