import { EPayioAppSlug } from '../enums';
import { IPayioApp } from '../interfaces/i-app';
export declare class PayioAppEntity implements IPayioApp {
    active: boolean;
    clientKey: string | null;
    clientSecret: string | null;
    createdAt: Date;
    description: string;
    downloadUrl: string;
    expiresAt: Date | null;
    expiresIn: number | null;
    id: string;
    name: string;
    price: number;
    refreshToken: string | null;
    secret: string;
    slug: EPayioAppSlug;
    tags: string[];
    accessToken: string | null;
    updatedAt: Date;
    version: string;
    constructor(data?: Partial<PayioAppEntity>);
}
