import { PropsWithChildren } from 'react'; type LoadingButtonProps = PropsWithChildren<{ variant?: 'text' | 'outlined' | 'contained'; shape: string; loading: boolean; loadingPosition: 'center' | 'start' | 'end'; color: 'inherit' | 'primary' | 'secondary' | 'error' | 'info' | 'success' | 'warning' | undefined; }>; declare const LoadingButton: import('react').ForwardRefExoticComponent<{ variant?: "text" | "outlined" | "contained"; shape: string; loading: boolean; loadingPosition: "center" | "start" | "end"; color: "inherit" | "primary" | "secondary" | "error" | "info" | "success" | "warning" | undefined; } & { children?: import('react').ReactNode | undefined; } & import('react').RefAttributes>; export { LoadingButton }; export type { LoadingButtonProps }; //# sourceMappingURL=LoadingButton.d.ts.map