import React from 'react'; import { Theme } from '@plurid/plurid-themes'; import { Format as IFormat } from '~server/data/interfaces'; export interface FormatProperties { theme: Theme; action: (format: IFormat) => void; cancel?: () => void; } declare const Format: React.FC; export default Format;