import React from "react";
declare function ProgressiveFormRoot({ children }: React.PropsWithChildren<{}>): import("react/jsx-runtime").JSX.Element;
export declare const ProgressiveForm: typeof ProgressiveFormRoot & {
    Step: typeof Step;
};
interface Step {
    depends?: Record<string, any> | string[] | string;
    isError?: boolean;
}
declare function Step({ depends, isError, children }: React.PropsWithChildren<Step>): import("react/jsx-runtime").JSX.Element;
export {};
