import { EDocType, EPixKeyType } from '../enums';
import { IPixKey } from '../interfaces/i-pix-key';
export declare class PixKeyEntity implements IPixKey {
    description: string;
    doc: string;
    docType: EDocType;
    isDefault: boolean;
    key: string;
    name: string;
    type: EPixKeyType;
    constructor(data?: Partial<PixKeyEntity>);
}
