import React from 'react'; type LoadingProps = { tone?: 'inherit' | 'field'; }; export default function Loading({ tone }: LoadingProps): React.JSX.Element; export {};