import * as React from 'react'; import { GridFormContentProps } from '../GridFormContent'; import { GridFormSectionProps } from '../GridFormSection'; type GridFormContentTestComponentProps = GridFormContentProps & { mode?: 'onSubmit' | 'onChange'; }; type GridFormSectionTestComponentProps = GridFormSectionProps & { mode?: 'onSubmit' | 'onChange'; }; export declare const GridFormContentTestComponent: React.FC; export declare const GridFormSectionTestComponent: React.FC; export {};