import type { ComponentType } from '../../jsx'; import type { BaseStructureProps } from './types'; export interface ListWaterfallProps extends BaseStructureProps { columns?: number; gap?: number; stepOffset?: number; } export declare const ListWaterfall: ComponentType;