import { GridBaseState, LayoutType } from '../../state'; import { GridSectionsState, SectionRange } from './GridSectionsState'; import { FiltersMap } from '@wix/bex-core'; export interface GridSectionsSectionStateParams { readonly imagePlacement?: 'side' | 'top'; readonly gridSections: GridSectionsState; readonly sectionDescriptor: SectionRange; readonly layoutType: LayoutType | undefined; readonly draggable?: 'none' | 'draggable'; } export declare class GridSectionsSectionState { gridBase: GridBaseState; gridSections: GridSectionsState; sectionDescriptor: SectionRange; constructor(params: GridSectionsSectionStateParams); get isLast(): boolean; } //# sourceMappingURL=GridSectionsSectionState.d.ts.map