import { HTMLAttributes } from 'react'; import { StyleProps } from '../../style-engine'; declare const pingStyles: import('../../style-engine').StylesDef<{ size: { sm: string; md: string; lg: string; }; color: { readonly primary: "bg-primary text-white"; readonly secondary: "bg-secondary text-white"; readonly accent: "bg-accent text-white"; readonly muted: "bg-muted text-foreground"; readonly success: "bg-success text-white"; readonly warning: "bg-warning text-white"; readonly danger: "bg-danger text-white"; readonly info: "bg-info text-white"; readonly gradient: "bg-gradient-ui text-white"; }; }>; type PingVariantProps = StyleProps; export interface PingProps extends Omit, keyof PingVariantProps>, PingVariantProps { } export declare function Ping({ size, color, className, ...props }: PingProps): import("react").JSX.Element; export {};