import { ReactNode, default as React } from 'react'; /** @inheritdoc */ export interface WithLoaderProps { /** * Whether the loader should be displayed */ loading?: boolean; children: ReactNode; } export declare const InputLoader: ({ loading, children, ...rest }: WithLoaderProps) => React.JSX.Element;