import { JSX } from "solid-js"; import { TransitionCallbacks } from "solid-react-transition"; import { BsPrefixOnlyProps } from "./helpers"; export interface OffcanvasTogglingProps extends TransitionCallbacks, BsPrefixOnlyProps { className?: string; in?: boolean; mountOnEnter?: boolean; unmountOnExit?: boolean; appear?: boolean; timeout?: number; children: JSX.Element; } declare const OffcanvasToggling: (p: OffcanvasTogglingProps) => JSX.Element; export default OffcanvasToggling;