import * as React from "react"; import { CommonStyleProps } from "../systemHelpers"; export declare type ButtonProps = CommonStyleProps & { primary?: boolean; disabled?: boolean; destructive?: boolean; }; export declare const Button: import("styled-components").StyledComponent<"button", any, React.PropsWithChildren, never>; export declare const asButton: (component: React.FC) => import("styled-components").StyledComponent, any, React.PropsWithChildren, never>;