import type { ILambda } from "../../defineConfig";
import type { QueueAttributes } from "./types";
export declare const getQueues: (resources: any, lambdas: ILambda[], attributes?: QueueAttributes) => {
    QueueName: string;
    tags?: Record<string, any>;
    Attributes?: Record<string, any>;
}[];
