import type { Actionable } from '../Actionable'; import type { PlainText } from '../text/PlainText'; export type ButtonElement = Actionable<{ type: 'button'; text: PlainText; url?: string; value?: string; style?: 'primary' | 'secondary' | 'danger' | 'warning' | 'success'; secondary?: boolean; }>; //# sourceMappingURL=ButtonElement.d.ts.map