import type { ComponentType } from '../../jsx'; import type { BaseStructureProps } from './types'; export interface SequencePyramidProps extends BaseStructureProps { gap?: number; width?: number; pyramidWidth?: number; itemHeight?: number; } export declare const SequencePyramid: ComponentType;