@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
12 lines (11 loc) • 415 B
TypeScript
import React from 'react';
import { TextFieldV5LabelOutPropsModel } from '../../../../components/TextFieldV5LabelOut';
interface AddElementBodyModel {
placeholder?: string;
initialState?: boolean;
onClose: () => void;
onClick: (text: string) => void;
TextFieldProps?: TextFieldV5LabelOutPropsModel;
}
export declare const AddElementBody: React.FunctionComponent<AddElementBodyModel>;
export {};