import { IPayioCardAuth } from '../interfaces';
export declare class PayioCardAuthEntity implements IPayioCardAuth {
    basic?: string | null;
    password: string | null;
    user: string | null;
    constructor(data?: Partial<PayioCardAuthEntity>);
}
