import { MessageOptions } from '@nestjstools/messaging';
export declare class GooglePubSubMessageOptions implements MessageOptions {
    readonly attributes: {
        [key: string]: string;
    };
    readonly middlewares: any[];
    readonly avoidErrorsWhenNotExistedHandler: boolean;
    constructor(attributes?: {
        [key: string]: string;
    });
}
