import { MaskOptions } from '../utils'; /** * Masks any string value by revealing a portion at the start and end, * and replacing the middle section with mask characters. * * Example: * maskGeneric("Temitope", { visibleStart: 2, visibleEnd: 2 }) → "Te****pe" */ export declare function maskGeneric(value: string, options?: MaskOptions): string; //# sourceMappingURL=generic.d.ts.map