﻿import { CourierMessages } from "../types";
interface ListMessagesParams {
    archived?: boolean;
    cursor?: string;
    event?: string;
    list?: string;
    messageId?: string;
    notification?: string;
    provider?: string[];
    recipient?: string;
    status?: string[];
    tag?: string[];
    tags?: string;
    tenant_id?: string;
    enqueued_after?: string;
    traceId?: string;
    limit?: number;
}
declare global {
    namespace Cypress {
        interface Chainable {
            listMessages(params: ListMessagesParams): Chainable<CourierMessages>;
        }
    }
}
export {};
//# sourceMappingURL=listMessages.d.ts.map