import { ComponentTypes, UserSelectMenu } from "oceanic.js"; export type UserSelectProps = Omit; export function UserSelect(props: UserSelectProps): UserSelectMenu { return { type: ComponentTypes.USER_SELECT, ...props }; }