import { ToReact } from './helpers.types'; import { ZLoader } from '../loader'; export type ZrLoader_Props = ToReact<'Loader'>; type ZrLoader_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { Content: typeof Content; }; declare const Content: import('react').FC; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ZrLoader_Type; export { Namespace as ZrLoader };