import { Ref } from 'vue'; import { CoarGridBuilder } from './builders'; /** * Composable that creates a CoarGridBuilder for use with CoarDataGrid. * * @example * ```ts * const { builder } = useDataGrid(); * * builder.columns([ * col => col.field('name').header('Name').flex(1), * col => col.field('email').header('Email').flex(1), * ]).rowDataRef(users); * ``` * * @example * ```html * * ``` */ export declare function useDataGrid(): { builder: CoarGridBuilder; gridReady: Readonly>; }; //# sourceMappingURL=useDataGrid.d.ts.map