import { EPixKey } from '../enums';
import { IPixKey } from '../interfaces/i-pix-key';
export declare class PixKeyEntity implements IPixKey {
    active: boolean;
    createdAt: Date;
    description: string;
    id: string;
    isDefault: boolean;
    key: string;
    type: EPixKey;
    updatedAt: Date;
    constructor(data?: Partial<PixKeyEntity>);
}
