import React, { ElementType, HTMLProps } from 'react'; export interface CollapsibleTogglerProps extends HTMLProps { disable?: boolean; htmlElement?: ElementType; children?: React.ReactNode; } export declare const CollapsibleToggler: React.FC;