/// import { Style } from 'twrnc/dist/esm/types'; import { TailwindFn } from 'twrnc'; declare type Props = { tw: TailwindFn; children: JSX.Element | JSX.Element[] | string; style?: Style; }; declare const LoadingRound: ({ tw, children, style }: Props) => JSX.Element; export default LoadingRound;