export declare const ACTIONSHEETFOOTER_CLASSNAME = "k-actionsheet-footer";
export type KendoActionSheetFooterProps = {
    alignment?: 'start' | 'center' | 'end' | 'stretched' | 'justify';
    orientation?: 'horizontal' | 'vertical';
    template?: boolean;
    as?: React.ElementType;
};
export declare const ActionSheetFooter: (props: KendoActionSheetFooterProps & React.HTMLAttributes<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element;
