import { ButtonProps, ButtonStylesProps } from '../Button/Button';
export interface AttachmentActionOwnProps {
}
export interface AttachmentActionProps extends AttachmentActionOwnProps, ButtonProps {
    text?: never;
    iconOnly?: never;
    circular?: never;
    size?: never;
    fluid?: never;
    inverted?: never;
}
export declare type AttachmentActionStylesProps = ButtonStylesProps & {
    text?: never;
    iconOnly?: never;
    circular?: never;
    size?: never;
    fluid?: never;
    inverted?: never;
};
export declare const attachmentActionClassName = "ui-attachment__action";
/**
 * An AttachmentAction provides a slot for actions in the Attachment.
 */
export declare const AttachmentAction: import("@fluentui/react-bindings").ComponentWithAs<"button", AttachmentActionOwnProps & ButtonProps>;
