import { ButtonProps, GridItemProps, GridProps } from 'naive-ui'; import { CSSProperties, PropType } from 'vue'; import { FormSchema } from './types/form'; export declare const basicProps: { labelWidth: { type: PropType; default: number; }; schemas: { type: PropType; default: () => never[]; }; layout: { type: StringConstructor; default: string; }; inline: { type: BooleanConstructor; default: boolean; }; size: { type: StringConstructor; default: string; }; labelPlacement: { type: StringConstructor; default: string; }; isFull: { type: BooleanConstructor; default: boolean; }; showActionButtonGroup: { type: any; default: boolean; }; showResetButton: { type: any; default: boolean; }; resetButtonOptions: PropType>; showSubmitButton: { type: any; default: boolean; }; submitButtonOptions: PropType>; showAdvancedButton: { type: any; default: boolean; }; submitButtonText: { type: StringConstructor; default: string; }; resetButtonText: { type: StringConstructor; default: string; }; gridProps: PropType; giProps: PropType; baseGridStyle: { type: PropType; }; collapsed: { type: BooleanConstructor; default: boolean; }; collapsedRows: { type: NumberConstructor; default: number; }; };