import { Theme } from '../interfaces/general'; export declare type Description = { category: string; type?: string; text: string; }; declare type DescriptionList = { [Key in keyof Partial]: Description; }; declare const descriptions: DescriptionList; export default descriptions;