import type { BaseBlock } from '@jbrowse/core/util/blockTypes';
declare const ContentBlock: ({ block, children, }: {
    block: BaseBlock;
    children: React.ReactNode;
}) => import("react/jsx-runtime").JSX.Element;
declare function ElidedBlock({ width }: {
    width: number;
}): import("react/jsx-runtime").JSX.Element;
declare function InterRegionPaddingBlock({ boundary, width, style, }: {
    boundary: boolean;
    width: number;
    style?: React.CSSProperties;
}): import("react/jsx-runtime").JSX.Element;
export { ContentBlock, ElidedBlock, InterRegionPaddingBlock };
