import type { ComponentProps } from '../../types';
import { ButtonProps } from '../../../../components/button/Button';
import type { StepIndex } from '../Context/types';
export type Props = ComponentProps & ButtonProps & {
    toStep?: StepIndex;
};
declare function EditButton(props: Props): import("react/jsx-runtime").JSX.Element;
declare namespace EditButton {
    var _supportsSpacingProps: boolean;
}
export default EditButton;
