@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
15 lines (14 loc) • 833 B
TypeScript
/// <reference types="react" />
interface CardFlexPropsModel {
borderRadius?: string;
border?: string;
shadow?: string;
padding?: string | number;
disabledHover?: boolean;
backgroundColor?: string;
hoverStyle?: 'shadow' | 'border';
}
export declare const CardFlex: 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> & CardFlexPropsModel, {}, {}>;
export {};