import { h } from 'preact'; interface TransProps { children: string; values?: Record; style?: preact.JSX.CSSProperties; } export declare function Trans({ children, values, style }: TransProps): h.JSX.Element; export {};