export declare type NullableList = 'items' | 'itemsAndList';
export interface BaseTypeOptions {
    nullable?: boolean | NullableList;
    defaultValue?: any;
}
