@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
18 lines (17 loc) • 585 B
TypeScript
import React from 'react';
import { BoxProps } from '@mui/material';
import { TextForLinesOutputModel } from '../../components';
export interface HeaderDrawerPropsModel {
titleHeader?: string;
hideCloseIcon?: boolean;
hideBackIcon?: boolean;
hideTitleHeader?: boolean;
onClose?: () => void;
onEdit?: () => void;
onBack?: () => void;
backgroundColor?: string;
hideEditIcon?: boolean;
titleProps?: Omit<TextForLinesOutputModel, 'text' | 'clines'>;
headerProps?: BoxProps;
}
export declare const HeaderDrawer: React.FC<HeaderDrawerPropsModel>;