///
import { HTMLProps } from 'react';
export interface IconProps extends HTMLProps {
iconScale?: number;
}
export declare const WaitingCircleIcon: (props: IconProps) => JSX.Element;
export declare const RunningCircleIcon: (props: IconProps & {
animated?: boolean | undefined;
}) => JSX.Element;
export declare const PassedCircleIcon: (props: IconProps) => JSX.Element;
export declare const ExclamationCircleIcon: (props: IconProps) => JSX.Element;
export declare const FailedCircleIcon: (props: IconProps) => JSX.Element;
export declare const NoStatusCircleIcon: (props: IconProps) => JSX.Element;
export declare const PassedFavIcon: (props: IconProps) => JSX.Element;
export declare const FailedFavIcon: (props: IconProps) => JSX.Element;
export declare const FileIcon: (props: IconProps) => JSX.Element;
export declare const FileAdvancedIcon: (props: IconProps) => JSX.Element;
export declare const CalendarIcon: (props: IconProps) => JSX.Element;