/**
 * @class TableConfig
 *
 * @description
 * a table configurator for model, @see {Table} annotation
 *
 * @author  Olivier Margarit
 * @since   0.1
 */
export declare class TableConfig {
    /**
     * @property {string} name, optional configuration. If not provided, the default
     * value is th class name
     */
    name?: string;
    /**
     * @property {number} version, the table model version, information to help migration
     */
    version?: number | undefined;
}
