/** * This file was auto-generated by Fern from our API Definition. */ /** * How much text should be storeable in this field */ export type StringConfigOptions = /** * up to 255 characters */ "tiny" /** * 64kb (default) */ | "normal" /** * 16mb */ | "medium" /** * 4gb */ | "long"; export declare const StringConfigOptions: { readonly Tiny: "tiny"; readonly Normal: "normal"; readonly Medium: "medium"; readonly Long: "long"; };