import { Ref, WritableComputedRef } from 'vue'; import { ComponentModel } from './cykLang'; import { ObjectData } from '@cyklang/core'; export declare function useCykGrid(props: { componentArg: ComponentModel | undefined; }): { isLoading: Ref; components: Ref; visible: Ref; title: WritableComputedRef; subtitle: WritableComputedRef; toolbarData: Ref; }; export declare const GRID_ATTS: string[]; export declare const SPACING_ATTS: Array; /** * * @param attributes * @returns */ export declare function getGridAttributes(attributes: any): any; /** * * @param attributes * @returns */ export declare function getSpacingAttributes(attributes: any): string[];