import React from 'react'; export interface LiteLLMHomeWidgetProps { /** Default period when the widget mounts. Defaults to '7d'. */ defaultPeriod?: 'today' | '7d' | '30d'; /** Optional title override. Defaults to 'LiteLLM Usage'. */ title?: string; } export declare const LiteLLMHomeWidget: React.FC;