import type { FC } from 'react'; import type { IconProps } from './Icon'; export interface EditIconProps extends IconProps { color?: 'primary' | 'secondary'; } export declare const EditIcon: FC;