/// interface Props { isLoading: boolean; isLoaderDisabled: boolean; loader: JSX.Element; size?: "medium" | "small" | "large"; text: string; } declare function ButtonWithLoader(props: Props): JSX.Element; export default ButtonWithLoader;