import type { ComponentProps } from '../../types';
export type WizardButtonsProps = ComponentProps & {
    children?: string;
};
declare function Buttons(props: WizardButtonsProps): import("react/jsx-runtime").JSX.Element;
export default Buttons;
