import { ButtonProps } from "./button.js"; import React from "react"; import * as react_jsx_runtime33 from "react/jsx-runtime"; //#region ui/loading-button.d.ts interface LoadingButtonProps extends ButtonProps { isLoading?: boolean; loadingText?: string; children: React.ReactNode; } declare function LoadingButton({ isLoading, loadingText, children, disabled, ...props }: LoadingButtonProps): react_jsx_runtime33.JSX.Element; //#endregion export { LoadingButton }; //# sourceMappingURL=loading-button.d.ts.map