import { TDecorator } from '../index';
export interface ICollapsableOptions {
    initialIsCollapsed?: boolean;
}
export interface ICollapsable {
    isCollapsed: boolean;
    toggleCollapse: () => void;
}
export default function collapsable({ initialIsCollapsed }?: ICollapsableOptions): TDecorator;
