/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { GridLayoutAlign } from './interfaces/GridLayoutProps'; import { GridLayoutItemProps } from './interfaces/GridLayoutItemProps'; import { PropType } from 'vue'; /** * @hidden */ declare const GridLayout: import('vue').DefineComponent; gap: { type: PropType; }; align: { type: PropType; validator: (value: GridLayoutAlign) => any; }; rows: PropType; cols: PropType; items: PropType; }>, {}, {}, { hAlign(): any; vAlign(): any; gridLayoutClasses(): { 'k-grid-layout': boolean; 'k-justify-items-start': boolean; 'k-justify-items-center': boolean; 'k-justify-items-end': boolean; 'k-justify-items-stretch': boolean; 'k-align-items-start': boolean; 'k-align-items-center': boolean; 'k-align-items-end': boolean; 'k-align-items-stretch': boolean; }; gapStyle(): string; gridTemplateRowsStyle(): any; gridTemplateColumnsStyle(): any; gridLayoutStyles(): { gap: any; gridTemplateColumns: any; gridTemplateRows: any; }; }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly; gap: { type: PropType; }; align: { type: PropType; validator: (value: GridLayoutAlign) => any; }; rows: PropType; cols: PropType; items: PropType; }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { GridLayout };