import { TESTING_STRING } from './string.const';
import { TESTING_NUMBER } from './number.const';
import { TESTING_SYMBOL_STRING, TESTING_SYMBOL_NUMBER } from './symbol.const';
import { TestingPersonShape } from '../../interface/person-shape.interface';
export declare class TestingClass {
    1030405027: string;
    5: number;
    firstName: string;
    surname: string;
    age: number;
    city: string;
    get [TESTING_NUMBER](): number;
    get [TESTING_STRING](): string;
    get [TESTING_SYMBOL_NUMBER](): number;
    get [TESTING_SYMBOL_STRING](): string;
}
export declare const TESTING_CLASS: TestingClass;
export declare class TestingPerson implements TestingPersonShape {
    firstName: string;
    surname: string;
    age: number;
}
export declare const TESTING_PERSON: TestingPerson;
