import { Parameter } from "./../index";
export interface AuthorInterface {
    name?: string;
}
export declare class Author implements AuthorInterface, Parameter {
    name?: string;
    constructor(data: any);
    static getNameDefault(): string;
    static getNameDescription(): string;
    static fromJson(data: any): Author;
    toJson(): any;
    clone(): Author;
}
