import { FC } from "react";
interface AttachIconProps {
    className?: string;
    width?: number;
    height?: number;
}
declare const AttachIcon: FC<AttachIconProps>;
export default AttachIcon;
