export interface HasLength {
    length: number;
}
export declare function hasLength(input: any): input is HasLength;
