@gsretail.com/gui-core
Version:
A skeleton to create your own React component library using Rollup, TypeScript, Sass and Storybook
15 lines (14 loc) • 697 B
TypeScript
/// <reference types="react" />
import { WithGuiTheme } from "../../assets/theme";
import { GuiDialogProps } from "./GuiDialog.type";
declare const StyledDialog: import("@emotion/styled").StyledComponent<((GuiDialogProps & WithGuiTheme) | (GuiDialogProps & WithGuiTheme & {
children?: import("react").ReactNode;
})) & {
theme?: import("@emotion/react").Theme;
}, {}, {}>;
declare const StyledDraggableDialog: import("@emotion/styled").StyledComponent<((GuiDialogProps & WithGuiTheme) | (GuiDialogProps & WithGuiTheme & {
children?: import("react").ReactNode;
})) & {
theme?: import("@emotion/react").Theme;
}, {}, {}>;
export { StyledDialog, StyledDraggableDialog };