import { EPixKey } from '../enums';
export interface IPixKey {
    active: boolean;
    key: string;
    type: EPixKey;
    createdAt: Date;
    id: string;
    updatedAt: Date;
    description: string;
    isDefault: boolean;
}
