import type { ComponentType } from '../../jsx'; import type { BaseStructureProps } from './types'; export interface SequenceFunnelProps extends BaseStructureProps { gap?: number; width?: number; funnelWidth?: number; itemHeight?: number; minBottomRatio?: number; } export declare const SequenceFunnel: ComponentType;