import { FormElementWithOptions } from '@oneblink/types/typescript/forms'; export declare function FileChip({ file: { fileName, url, data }, }: { file: { fileName: string; url?: string; isPrivate?: boolean; data?: string; }; }): import("react/jsx-runtime").JSX.Element; export declare function FilesElementDataTableCellContent({ value, }: { value: Array<{ fileName: string; url?: string | undefined; isPrivate?: boolean | undefined; data?: string | undefined; }>; }): import("react/jsx-runtime").JSX.Element; export declare function MultiSelectFormElementTableCellContent({ value, formElement, }: { value: string[]; formElement: FormElementWithOptions; }): import("react/jsx-runtime").JSX.Element; export declare function getSelectedOptionLabel(formElement: FormElementWithOptions, value: string): string;