import type * as React from "react";
import type { TransitionDuration } from "../transition";
export interface State {
    maxHeight: number | null;
    transitionFinished: boolean;
    visible: boolean;
}
export interface Props {
    readonly children: React.ReactNode;
    readonly maxHeight: number | null;
    readonly expanded?: boolean;
    readonly ariaLabelledBy?: string;
    readonly id?: string;
    readonly transitionDuration?: TransitionDuration;
    readonly stopClickPropagation?: boolean;
}
//# sourceMappingURL=types.d.ts.map