import { FC } from 'react'; import { type ButtonProps } from './button'; type RunButtonState = 'idle' | 'running' | 'cancelling'; export type RunButtonProps = { state?: RunButtonState; onRun: () => void; onCancel?: () => void; runLabel?: string; disabled?: boolean; variant?: ButtonProps['variant']; cancelVariant?: ButtonProps['variant']; className?: string; }; /** * A fixed-width run/cancel button that doesn't shift layout between states. */ export declare const RunButton: FC; export {}; //# sourceMappingURL=run-button.d.ts.map