import { EPixKeyType } from '../enums';
export interface IPixKey {
    key: string;
    type: EPixKeyType;
    description: string;
    isDefault: boolean;
}
