export type TileLogState = "success" | "error" | "exception" | "generic" | "in-progress" | "none"; export interface TileLogProps { timestamp: string; action: string; status?: TileLogState; note?: string; author?: string; } declare const TileLog: ({ timestamp, action, status, note, author, }: TileLogProps) => import("react/jsx-runtime").JSX.Element; export default TileLog;