import { FC } from "react"; export interface IRefreshFormProps { children?: never; } /** * Simple component that forces form refresh (for example when it's built dynamically using Fetches). * * It's just a shortcut component. * * Do not use children here! */ export declare const RefreshForm: FC;