import type * as React from "react"; type ClientSecretInputProps = React.ComponentProps<"input"> & { /** "create" requires a value; "rotate" treats empty as "keep existing" */ mode: "create" | "rotate"; /** When mode="rotate", show the amber "A secret is set" pill */ secretIsSet?: boolean; }; export type { ClientSecretInputProps }; export declare const ClientSecretInput: ({ mode, secretIsSet, disabled, ...inputProps }: ClientSecretInputProps) => React.JSX.Element; //# sourceMappingURL=client-secret-field.d.ts.map