import { FC } from 'react';
type IconProps = {
    width?: number;
    height?: number;
    size?: number;
};
declare const UnlockIcon: FC<IconProps>;
export default UnlockIcon;
