import { type APITextInputComponent, TextInputStyle } from "discord-api-types/v10"; export declare function createTextComponent({ customId, label, style, maxLength, minLength, placeholder, required, value, }: { customId: string; label: string; maxLength?: number | undefined; minLength?: number | undefined; placeholder?: string | undefined; required?: boolean | undefined; style?: TextInputStyle | undefined; value?: string | undefined; }): APITextInputComponent; //# sourceMappingURL=textComponent.d.ts.map