import { ViewProps } from "@vnxjs/components/types/View";
import { ReactNode } from "react";
export interface CollapseProps extends ViewProps {
    defaultValue?: any;
    value?: any;
    accordion?: boolean;
    bordered?: boolean;
    children?: ReactNode;
    onChange?(value: any): void;
}
declare function Collapse(props: CollapseProps): JSX.Element;
export default Collapse;
