import { Label } from './normalise'; export declare const validateName: (name: string) => string; export declare type ParsedInputResult = { type: 'name' | 'label'; normalised: string | undefined; isValid: boolean; isShort: boolean; is2LD: boolean; isFTM: boolean; labelDataArray: Label[]; }; export declare const parseInput: (input: string) => ParsedInputResult; export declare const checkIsDotFtm: (labels: string[]) => boolean;