import type { BaseTool } from "../client.js";
export type TwitterToolsConfig = ({
    xBearerToken: string;
} | {
    xApiKey: string;
    xApiKeySecret: string;
}) & {
    xAccessToken?: string;
    xAccessTokenSecret?: string;
};
export declare function twitterTools(config: TwitterToolsConfig): Promise<BaseTool[]>;
//# sourceMappingURL=index.d.ts.map