import { BitBuilderBase } from '../internal/base';
import { Blocks, Color, End, Fallback } from '../internal/methods';
import type { BlockBuilder } from '../internal/types';
export interface AttachmentParams {
    color?: string;
    fallback?: string;
}
export interface AttachmentBuilder extends Blocks<BlockBuilder>, Color, End, Fallback {
}
/**
 * @@link https://api.slack.com/reference/messaging/attachments
 * @@displayName Attachment
 */
export declare class AttachmentBuilder extends BitBuilderBase {
}
