export declare const ACTIONBUTTONS_CLASSNAME = "k-actions";
export type KendoActionButtonsProps = {
    alignment?: 'start' | 'center' | 'end' | 'stretched' | 'justify';
    orientation?: 'horizontal' | 'vertical';
};
export declare const ActionButtons: {
    (props: KendoActionButtonsProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
    states: any[];
    options: {};
    className: string;
    defaultOptions: {
        alignment: string;
        orientation: string;
    };
};
export default ActionButtons;
