import { FC, PropsWithChildren } from "react"; export declare type ISpinner = PropsWithChildren<{ done?: boolean; }>; /** * Spinner is simple placeholder component - until truthy "done" is not true, spinner icon is shown. * When true, children prop is rendered. */ export declare const Spinner: FC;