import { FunctionComponent } from 'react'; export declare const classPrefix = "tk"; export type TButton = { component: FunctionComponent; props: { show: boolean; [key: string]: any; }; }; export type TButtons = TButton[][]; export type TObjectFit = 'fill' | 'contain' | 'cover' | 'none' | 'scale-down';