export declare const LOADER_SIZE: { [Key in Size]: Key; }; export type Size = 'smaller' | 'small' | 'base' | 'large' | 'larger' | 'huge' | 'massive'; export type Variant = 'base' | 'selected' | 'healthy' | 'warning' | 'danger'; export declare const QUERY_LAST_SEVEN_DAYS = "now-7d"; export declare const QUERY_LAST_TWENTY_FOUR_HOURS = "now-24h"; export declare const QUERY_LAST_ONE_HOUR = "now-1h"; export declare const LAST_SEVEN_DAYS = "Last 7 days"; export declare const LAST_TWENTY_FOUR_HOURS = "Last 24 hours"; export declare const LAST_ONE_HOUR = "Last 1 hour"; export declare const SAMPLE_DURATION_LAST_SEVEN_DAYS: number; export declare const SAMPLE_DURATION_LAST_TWENTY_FOUR_HOURS: number; export declare const SAMPLE_DURATION_LAST_ONE_HOUR: number; export declare const SAMPLE_FREQUENCY_LAST_SEVEN_DAYS: number; export declare const SAMPLE_FREQUENCY_LAST_TWENTY_FOUR_HOURS = 720; export declare const SAMPLE_FREQUENCY_LAST_ONE_HOUR = 30; export type QueryTimeSpan = { query: string; label: string; duration: number; interval: number; /** @deprecated Use `interval` instead */ frequency: number; }; export declare const queryTimeSpansCodes: QueryTimeSpan[]; export declare const NAN_STRING = "NAN"; export declare const STATUS_CRITICAL = "critical"; export declare const STATUS_WARNING = "warning"; export declare const STATUS_SUCCESS = "success"; export declare const STATUS_HEALTHY = "healthy"; export declare const STATUS_INFO = "info"; export declare const STATUS_UNKNOWN = "unknown"; export declare const STATUS_NONE = "none"; export type Status = 'none' | 'unknown' | 'info' | 'healthy' | 'success' | 'warning' | 'critical'; //# sourceMappingURL=constants.d.ts.map