import { PropsWithChildren } from 'react'; import { SpinnerProps } from 'react-bootstrap'; interface LoaderProps { loading?: boolean | string; animation?: SpinnerProps['animation']; } export default function Loader({ loading, children, variant, animation, ...props }: PropsWithChildren>): import("react/jsx-runtime").JSX.Element | null; export {};