import { Label } from '@wundergraph/cosmo-connect/dist/platform/v1/platform_pb';
export declare const processProposalSubgraphs: ({ subgraphs, newSubgraphs, deletedSubgraphs, }: {
    subgraphs: string[];
    newSubgraphs: string[];
    deletedSubgraphs: string[];
}) => Promise<{
    name: string;
    schemaSDL: string;
    isDeleted: boolean;
    isNew: boolean;
    labels: Label[];
}[]>;
