import { APIResource } from "../../core/resource.js"; import { APIPromise } from "../../core/api-promise.js"; import { RequestOptions } from "../../internal/request-options.js"; export declare class Activities extends APIResource { /** * Create a new activity for an account */ create(id: string, body: ActivityCreateParams, options?: RequestOptions): APIPromise; } export interface ActivityCreateParams { /** * The slug of the activity to create */ slug: string; /** * Optional contact ID of the actor of the activity */ contact_id?: string; /** * Optional HTML content to display in the activity */ content_html?: string; /** * Optional link to add to the activity */ link?: string; /** * Optional link text to display on the activity */ link_text?: string; /** * Timestamp (RFC3339) of when the activity happened */ timestamp?: string; /** * Optional user ID of the actor of the activity */ user_id?: string; } export declare namespace Activities { export { type ActivityCreateParams as ActivityCreateParams }; } //# sourceMappingURL=activities.d.ts.map