import type { ReactNode } from "react"; import React from "react"; export type InlineLabelColors = "greyBlue" | "red" | "orange" | "green" | "blue" | "yellow" | "lime" | "purple" | "pink" | "teal" | "yellowGreen" | "blueDark" | "lightBlue" | "indigo"; interface InlineLabelProps { /** * The size of the label * @default base */ readonly size?: "small" | "base" | "large" | "larger"; /** * The color of the label * @default "greyBlue" */ readonly color?: InlineLabelColors; readonly children: ReactNode; } export declare function InlineLabel({ size, color, children, }: InlineLabelProps): React.JSX.Element; export {};