import { APITextInputComponent } from "discord-api-types/v10"; import { ModalActionRowComponent } from "./ModalActionRowComponent"; export default class TextInput extends ModalActionRowComponent { style: number | null; custom_id: string | null; label: string | null; placeholder: string | null; value: string | null; min_length: number | null; max_length: number | null; required: boolean; constructor(raw?: APITextInputComponent); setStyle(style: number): TextInput; setCustomId(id: string): TextInput; setLabel(label: string): TextInput; setPlaceholder(placeholder: string): TextInput; setMinLength(min: number): TextInput; setMaxLength(max: number): TextInput; setRequired(required: boolean): TextInput; setValue(value: string): TextInput; } //# sourceMappingURL=TextInput.d.ts.map