import { type APITextInputComponent, TextInputStyle } from "discord-api-types/v10"; /** * Creates a text input component * * An interactive component that allows users to enter free-form text responses in modals */ export declare function TextInput(config: Omit & { style?: keyof typeof TextInputStyle; }): APITextInputComponent;