@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
18 lines (17 loc) • 1.23 kB
TypeScript
/// <reference types="react" />
interface BoxPropsModel {
showBorder: boolean;
backgroundColor?: boolean;
showBoxShadow?: boolean;
showDivider?: boolean;
}
export declare const Box: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & BoxPropsModel, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
export declare const InputLabel: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, {}>;
interface CssTextFieldPropsModel {
borderColor?: string;
backgroundColor?: boolean;
}
export declare const CssTextField: import("@emotion/styled").StyledComponent<{
variant?: import("@mui/material").TextFieldVariants | undefined;
} & Omit<import("@mui/material").OutlinedTextFieldProps | import("@mui/material").FilledTextFieldProps | import("@mui/material").StandardTextFieldProps, "variant"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & CssTextFieldPropsModel, {}, {}>;
export {};