export declare class FieldDefinition {
    description: string;
    length: number;
    constructor(description: string, length?: number);
}
