import { Ref } from 'vue'; import { Grid, IGridOptions } from '@formily/grid'; export interface IFormGridProps extends IGridOptions { grid?: Grid; prefixCls?: string; className?: string; } export declare const createFormGrid: (props: IFormGridProps) => Grid; export declare const useFormGrid: () => Ref>; /** * @deprecated */ export declare const useGridColumn: (gridSpan?: string) => string; export declare const FormGrid: any; export default FormGrid;