import { EPixKeyType, EDocType } from '../enums';
export interface IPixKey {
    key: string;
    type: EPixKeyType;
    doc: string;
    docType: EDocType;
    name: string;
    description: string | null;
    isDefault: boolean;
}
