import { default as React } from 'react'; import { PropsWithChildren } from '../../../types/react'; import { SingleButtonColorStyleParams } from '../../../utils'; type BaseProps = PropsWithChildren & { isLoading?: boolean; }>; type BaseButtonProps = BaseProps & SingleButtonColorStyleParams; declare function BaseButton({ children, isLoading, disabled, ...props }: BaseButtonProps): React.JSX.Element; export type { BaseButtonProps }; export { BaseButton }; //# sourceMappingURL=index.d.ts.map