import React from 'react'; import { FlintStepLabel as FlintStepLabelElement } from '@getufy/flint-ui/stepper/flint-stepper'; /** * Step Label: the label for a step. * * @slot (default) - Label text. * @slot optional - Optional step text. */ export interface FlintStepLabelProps extends React.HTMLAttributes { /** Whether the label's step is currently active. */ active?: boolean; /** Whether the label's step is disabled. */ disabled?: boolean; /** Whether the label's step is in an error state. */ error?: boolean; } export declare const FlintStepLabel: React.ForwardRefExoticComponent>;