import { AttributeEditorProps } from './interfaces'; interface GridColumns { gridColumnStart: number; gridColumnEnd: number; } export declare function getItemGridColumns(layout: AttributeEditorProps.GridLayout, itemIndex: number): GridColumns; export declare function getRemoveButtonGridColumns(layout: AttributeEditorProps.GridLayout, previousGridColumnEnd: number): GridColumns; export declare function isRemoveButtonOnSameLine(layout: AttributeEditorProps.GridLayout): boolean; export declare function getGridTemplateColumns(layout: AttributeEditorProps.GridLayout): string; export {};