interface Componentimport { type Component } from "https://dotland.deno.dev/x/discordeno@17.2.0/plugins/validations/deps.ts"; Propertiestype: MessageComponentTypescomponent type optionalcustomId: stringa developer-defined identifier for the component, max 100 characters optionalrequired: booleanwhether this component is required to be filled, default true optionaldisabled: booleanwhether the component is disabled, default false optionalstyle: ButtonStyles | TextStylesFor different styles/colors of the buttons optionallabel: stringtext that appears on the button (max 80 characters) optionalvalue: stringthe dev-define value of the option, max 100 characters for select or 4000 for input. optionalemoji: { id?: bigint; name?: string; animated?: boolean; }Emoji object that includes fields of name, id, and animated supporting unicode and custom emojis. optionalurl: stringoptional url for link-style buttons that can navigate a user to the web. Only type 5 Link buttons can have a url optionaloptions: SelectOption[]The choices! Maximum of 25 items. optionalplaceholder: stringA custom placeholder text if nothing is selected. Maximum 150 characters. optionalminValues: numberThe minimum number of items that must be selected. Default 1. Between 1-25. optionalmaxValues: numberThe maximum number of items that can be selected. Default 1. Between 1-25. optionalminLength: numberThe minimum input length for a text input. Between 0-4000. optionalmaxLength: numberThe maximum input length for a text input. Between 1-4000. optionalcomponents: Component[]a list of child components import Componentimport { Component } from "https://dotland.deno.dev/x/discordeno@17.2.0/plugins/validations/deps.ts";