declare class Recaller { protected recaller: string; constructor(recaller: string); /** * Determine if the recaller is valid. */ valid(): boolean; /** * Determine if the recaller is an valid string. */ protected properString(): boolean; /** * Determine if the recaller has all segments. */ protected hasAllSegments(): boolean; /** * Get the user ID from the recaller */ id(): string; /** * Get the "remember token" from the recaller */ token(): string; } export default Recaller;