import Button from "../Button/Button.js";
type ButtonProps = React.ComponentProps<typeof Button>;
export type SubmitButtonProps = Omit<ButtonProps, "type" | "variant" | "ref"> & {
    /** Available variants: 'filled' (default), 'basic', and 'flat' */
    variant?: ButtonProps["variant"];
};
/**
 * Alias for `<Button type="submit" variant="filled">`
 *
 * @see https://bifrost.intility.com/react/submitbutton
 */
declare const SubmitButton: import("react").ForwardRefExoticComponent<Omit<import("../Button/Button.js").ButtonProps & import("react").RefAttributes<HTMLButtonElement>, "ref" | "type" | "variant"> & {
    /** Available variants: 'filled' (default), 'basic', and 'flat' */
    variant?: ButtonProps["variant"];
} & import("react").RefAttributes<HTMLButtonElement>>;
export default SubmitButton;
