///
import { CommonStyleProps } from "./system/unions";
export declare type ActionProps = CommonStyleProps & {
disabled?: boolean;
destructive?: boolean;
hideDisabled?: boolean;
};
export declare const Action: import("styled-components").StyledComponent<"button", any, import("react").PropsWithChildren, never>;
export declare const asAction: (component: React.FC) => import("styled-components").StyledComponent, any, import("react").PropsWithChildren, never>;