import * as React from "react"; /** * The duration unit types. */ export type DurationUnitType = "day" | "hour" | "minute" | "second" | "millisecond"; /** * The DurationControlInlineText component props. */ export type DurationControlInlineTextProps = { value: string; }; /** * The DurationControlInlineText component. */ export declare const DurationControlInlineText: React.FunctionComponent;