import type { Attachment } from "../../types/attachment.js";
import type { AttachmentRuntime } from "../../runtime/api/attachment-runtime.js";
export type AttachmentState = Attachment;
export type AttachmentMethods = {
    getState(): AttachmentState;
    remove(): Promise<void>;
    __internal_getRuntime?(): AttachmentRuntime;
};
export type AttachmentMeta = {
    source: "message" | "composer";
    query: {
        type: "index";
        index: number;
    } | {
        type: "id";
        id: string;
    };
};
export type AttachmentClientSchema = {
    methods: AttachmentMethods;
    meta: AttachmentMeta;
};
//# sourceMappingURL=attachment.d.ts.map