import { LoaderProps, Styles } from '@open-tender/ui'; import { ReactNode } from 'react'; declare const Loader: ({ text, style, children }: { text?: string; style?: Styles; children: (props: LoaderProps) => ReactNode; }) => ReactNode; export default Loader;