import { StatusError } from '@google-cloud/pubsub/build/src/message-stream';
type VoidCallback = () => void;
type OnErrorCallback = (error: StatusError) => void;
export type GCPubSubEvents = {
    error: OnErrorCallback;
    close: VoidCallback;
};
export {};
