import { FunctionComponent } from "react"; export declare type LogType = "info" | "warn" | "error" | "dir" | "log"; export declare type LogValue = string | object; interface LogProps { type: LogType; values: LogValue[]; } declare const Log: FunctionComponent; export default Log;