import { SpaceProps } from "styled-system"; import { Size, Variant, VariantType } from "./button.config"; type StyledButtonProps = SpaceProps & { $allowMotion?: boolean; $inverse?: boolean; $fullWidth?: boolean; $noWrap?: boolean; $iconOnly?: boolean; }; export declare const StyledContentContainer: import("styled-components").StyledComponent<"span", any, {}, never>; export declare const StyledButton: import("styled-components").StyledComponent<"button", any, Omit & { $size: Size; $variant: Variant; $variantType: VariantType; }, never>; export default StyledButton;