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