import { FnInput } from "../reducer/lambda/FnInput.js"; import { FrType } from "./FrType.js"; type Props = { name?: string; type: FrType; }; export declare class FrInput { readonly name: string | undefined; readonly optional: IsOptional; readonly type: FrType; constructor(props: Props, optional: IsOptional); toFnInput(): FnInput; toString(): string; } export declare function frInput(props: Props): FrInput; export declare function frOptionalInput(props: Props): FrInput; export declare function namedInput(name: string, type: FrType): FrInput; export {}; //# sourceMappingURL=FrInput.d.ts.map