export interface MasterCounts {
    initial: number;
    surveillance: number;
    recertification: number;
    total: number;
}
export interface MasterRecord {
    sno: number;
    audit_code: string;
    audit_type: string;
    company: string;
    standards: string;
    accreditation: string;
    stage: string;
    mode: string;
    coordinator: string;
    group: string;
    date: string;
    time: string;
    lead_auditor: string;
    status: string;
}
export declare function prettyType(t?: string | null): string;
export declare function prettyMode(m?: string | null): string;
export declare function prettyStatus(s?: string | null): string;
export declare function fullName(u: any): string;
export declare function contactNameForRow(row: any): string;
export declare function toMasterRecord(row: any, index: number): MasterRecord;
