export declare function valid(sequence: string): boolean; export declare function complement(base: string): "A" | "C" | "G" | "T" | "Y" | "R" | "S" | "W" | "M" | "K" | "V" | "H" | "D" | "B" | "N"; export declare function expand(base: string): string[];