export interface Company {
}
export declare namespace Company {
    /**
     * Interface representing a document type.
     */
    interface IDocumentType {
        /** Code representing the document type. */
        code: string;
        /** Title of the document type. */
        title: string;
    }
    /**
     * Constant array of document types.
     */
    export const DocumentTypes: IDocumentType[];
    export {};
}
