import { Culture } from './culture.model';
import { HasDescription } from './description.model';
/**
 * @public
 */
export interface DocumentFileType extends HasDescription {
    documentFileTypeId: string;
}
/**
 * @public
 */
export interface Lookups {
    /**
     * List of all available countries.
     */
    countries: string[];
    /**
     * List of all available nationalities.
     */
    nationalities: string[];
    /**
     * List of all available {@link DocumentFileType}
     */
    documentFileTypes: DocumentFileType[];
    /**
     * List of all available {@link Culture}.
     */
    cultures: Culture[];
}
