import type { Client } from "graphql-ws";
export declare const generateCreatedSubscription: ({ resource, filters, meta, }: any) => {
    query: string;
    variables: {
        [k: string]: any;
    };
    operation: string;
    operationName: string;
};
export declare const generateUpdatedSubscription: ({ id, resource, filters, meta, }: any) => {
    query: string;
    variables: {
        [k: string]: any;
    };
    operation: string;
    operationName: string;
};
export declare const generateDeletedSubscription: ({ resource, filters }: any) => {
    query: string;
    variables: {
        [k: string]: any;
    };
    operation: string;
    operationName: string;
};
export declare const generateSubscription: (client: Client, { callback, params, meta }: any, type: string) => () => void;
//# sourceMappingURL=helpers.d.ts.map