import { ActionSheetFooter } from './actionsheet-footer';
import { ActionSheetHeader } from './actionsheet-header';
export declare const ACTIONSHEETVIEW_CLASSNAME = "k-actionsheet-view";
export type KendoActionSheetViewProps = {
    children?: React.JSX.Element | React.JSX.Element[];
    header?: React.ReactElement<typeof ActionSheetHeader>;
    footer?: React.ReactElement<typeof ActionSheetFooter>;
    adaptive?: boolean;
    animated?: boolean;
};
export declare const ActionSheetView: {
    (props: KendoActionSheetViewProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
    states: any[];
    options: {};
    className: string;
    defaultOptions: {};
};
export default ActionSheetView;
