import React from 'react'; type Icon = 'spinner' | 'warning'; type Props = { fill?: string; size?: number; icon: Icon; }; export declare const IconsSvg: ({ fill, size, icon }: Props) => React.JSX.Element | null; export {};