import { OrganizationsService } from './organizations.service';
import { CreateOrganizationDto } from './dto/create-organization.dto';
import { UpdateOrganizationDto } from './dto/update-organization.dto';
export declare class OrganizationsController {
    private readonly organizationsService;
    constructor(organizationsService: OrganizationsService);
    findAll(): Promise<import("./entities/organization.entity").Organization[]>;
    findOne(id: string): Promise<import("./entities/organization.entity").Organization>;
    create(dto: CreateOrganizationDto): Promise<import("./entities/organization.entity").Organization>;
    update(id: string, dto: UpdateOrganizationDto): Promise<import("./entities/organization.entity").Organization>;
    remove(id: string): Promise<{
        success: boolean;
    }>;
}
