export interface HasSize {
    size: number;
}
export declare function hasSize(input: any): input is HasSize;
