import { BaseProps } from 'tastycss';

interface JengaRootProps extends BaseProps {
    tokens?: {
        [key: string]: string;
    };
    bodyStyles?: {
        [key: string]: string;
    };
    fonts?: boolean;
    publicUrl?: string;
    router?: any;
    font?: string;
    monospaceFont?: string;
    applyLegacyTokens?: boolean;
}
declare function Root(allProps: JengaRootProps): JSX.Element;

export { JengaRootProps, Root };
