import * as React from "react"; export interface RefreshIconProps { title?: string; decorative: boolean; } declare const SvgIcnRefresh: (props: React.SVGProps & RefreshIconProps) => JSX.Element; export default SvgIcnRefresh;