import { ChopLogicSVGElementProps } from '../../models';
import { ReactElement } from 'react';
import { ChopLogicIconName } from '../../enums';
type ChopLogicIcons = {
    [key in ChopLogicIconName]: ({ title, ...rest }: ChopLogicSVGElementProps) => ReactElement;
};
export declare const ChopLogicIconDictionary: ChopLogicIcons;
export {};
