import React from "react"; import type { TextAlign, TextColor } from "../Typography"; export type ActionLabelVariation = Extract; type ActionLabelType = "default" | "cardTitle"; interface ActionLabelProps { /** * Text to display. Supports nesting text elements. */ readonly children?: React.ReactNode; /** * Set the display text to disabled color */ readonly disabled?: boolean; /** * The text color */ readonly variation?: ActionLabelVariation; /** * Changes the appearance to match the style of where it's getting used */ readonly type?: ActionLabelType; /** * Alignment of action label */ readonly align?: TextAlign; } export declare function ActionLabel({ children, variation, type, disabled, align, }: ActionLabelProps): React.JSX.Element; export {};