///
import { IconsProps } from "../types";
type ISvgProps = {
className: string;
} & Partial;
type IconType = "add" | "catalog-tree" | "close" | "calendar" | "circle-arrow" | "coins" | "dots" | "percent-round" | "arrow-right" | "magnifier" | "trash" | "extended" | "warning" | "segment-expand" | "segment-edit" | "filter" | "duplicate" | "cross-arrows" | "question" | "arrow-bottom" | "area-selection" | "flip-horizontal" | "revert" | "move" | "plus" | "minus";
type Icons = {
[key in IconType]: (props: ISvgProps) => JSX.Element;
};
declare const icons: Icons;
export { icons, IconType, ISvgProps };