import { Button, StatusColor, StatusType } from '@c-fo/vibes'; import { ComponentProps } from 'react'; import type { MessageContentType } from '../../../types'; export declare const ButtonForm: ({ contents, title, note, status, traits, }: { contents: ({ label: string; url?: string; key?: undefined; children?: undefined; } & Omit, 'mt' | 'mb' | 'mr' | 'ml' | 'ma'>)[]; title?: string | undefined; note?: { contents: MessageContentType[]; } | undefined; status?: { statusColor: StatusColor; label: string; elipsis?: boolean | undefined; overflowWrap?: "normal" | "anywhere" | "break-word" | undefined; } | undefined; traits?: { type: StatusType; label: string; }[] | undefined; }) => JSX.Element;