import { type Inserts, type Updates, validateCnpj, formatCnpj } from '@pedrohccs/shared-libs'; export declare class EmpresaService { private static getSupabase; static listar(): Promise; static buscarPorId(id: string): Promise; static buscarPorCnpj(cnpj: string): Promise; static criar(empresa: Inserts<'empresas'>): Promise; static atualizar(id: string, empresa: Updates<'empresas'>): Promise; static desativar(id: string): Promise; static validarCnpj: typeof validateCnpj; static formatarCnpj: typeof formatCnpj; } //# sourceMappingURL=EmpresaService.d.ts.map