@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
24 lines (23 loc) • 1.77 kB
TypeScript
/// <reference types="react" />
import { DrawerVariant } from '.';
interface WrapperDrawerModel {
direction: 'left' | 'right' | 'top' | 'bottom';
variant?: DrawerVariant;
animation?: boolean;
}
export declare const WrapperDrawer: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
}, keyof import("@mui/system").BoxOwnProps<import("@mui/material").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & WrapperDrawerModel, {}, {}>;
interface ContentModel {
variant?: DrawerVariant;
width?: string | number;
backgroundColor?: string;
boxShadow?: string;
padding?: string;
border?: string;
}
export declare const Content: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
}, keyof import("@mui/system").BoxOwnProps<import("@mui/material").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & ContentModel, {}, {}>;
export declare const BackDrop: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
export {};