import { ActionRow, Button, Component, SelectMenu, SelectOption, TextInput, TextInputStyle } from "droff/types"; export type UIComponent = Exclude; /** * Helper to create an Action Row grid. */ export declare const grid: (items: UIComponent[][]) => ActionRow[]; /** * Helper to create a single column of components */ export declare const singleColumn: (items: UIComponent[]) => ActionRow[]; /** * Helper to create a button component. */ export declare const button: (button: Partial