import type { ComponentType } from '../../jsx'; import type { BaseStructureProps } from './types'; export interface ListPyramidProps extends BaseStructureProps { gap?: number; levelGap?: number; } export declare const ListPyramid: ComponentType;