import React from "react"; import { ButtonProps } from "./Button"; import { LogoProps } from "./Logo"; declare const ButtonPillSizes: readonly ["xs", "sm", "md"]; type ContentLeftLogo = { type: "logo"; source: LogoProps["name"]; }; type ContentLeftIcon = { type: "icon"; source: string; }; type ContentLeftAvatar = { type: "avatar"; source: string; }; type ContentLeft = ContentLeftLogo | ContentLeftIcon | ContentLeftAvatar; type OmittedButtonProps = "loading" | "variant" | "iconLeft" | "iconRight" | "title" | "icon" | "tooltip"; type ButtonPillProps = Omit & { contentLeft?: ContentLeft; size?: (typeof ButtonPillSizes)[number]; text: string; tooltip?: string; }; export declare const ButtonPill: ({ disabled, external, size, contentLeft, text, tooltip, onClick, to, type, theme, }: ButtonPillProps) => React.JSX.Element; export {}; //# sourceMappingURL=ButtonPill.d.ts.map