/// <reference types="react" />
import * as VIM from 'vim-webgl-viewer/';
export type SectionState = {
    clip: boolean;
    active: boolean;
};
export declare function getSectionBoxState(viewer: VIM.Viewer): {
    clip: boolean;
    active: boolean;
    set: import("react").Dispatch<import("react").SetStateAction<SectionState>>;
    toggle: () => void;
    hide: () => void;
    reset: () => void;
    shrinkToSelection: () => void;
    toggleClip: () => void;
};
