import { FC, PropsWithChildren, ReactNode } from "react"; export declare type ILoaderProps = PropsWithChildren<{ icon: ReactNode; loading: boolean; error: boolean; errorText?: string; }>; export declare const Loader: FC;