export declare function findCompany(companyId: string): Promise; export declare function updateCompany(companyId: string, data: any): Promise; export declare function findBrand(companyId: string): Promise; export declare function upsertBrand(companyId: string, updateData: any, createData: any): Promise; export declare function findContractSettings(companyId: string): Promise; export declare function upsertContractSettings(companyId: string, data: any): Promise; export declare function findInsurancePolicies(companyId: string): Promise; export declare function createInsurancePolicy(companyId: string, data: any): Promise; export declare function updateInsurancePolicy(id: string, companyId: string, data: any): Promise; export declare function findInsurancePolicyOrThrow(id: string): Promise; export declare function deleteInsurancePolicy(id: string, companyId: string): Promise; export declare function findPricingRules(companyId: string): Promise; export declare function createPricingRule(companyId: string, data: any): Promise; export declare function updatePricingRule(id: string, companyId: string, data: any): Promise; export declare function findPricingRuleOrThrow(id: string): Promise; export declare function deletePricingRule(id: string, companyId: string): Promise; export declare function findAccountingSettings(companyId: string): Promise; export declare function upsertAccountingSettings(companyId: string, data: any): Promise; export declare function findApiKey(companyId: string): Promise<{ apiKeys: any; }>; export declare function regenerateApiKey(companyId: string): Promise<{ apiKey: string; prefix: string; warning: string; }>; export declare function findBrandBySubdomain(subdomain: string, excludeCompanyId: string): Promise; export declare function findBrandByCustomDomain(customDomain: string, excludeCompanyId: string): Promise; export declare function clearCustomDomain(companyId: string): Promise; //# sourceMappingURL=company.repo.d.ts.map