import { CodeableConcept } from 'fhir/r3'; import { ComponentStyles } from '../../BrandConfigProvider'; export declare const useSleepDisplay: (stageColors?: ComponentStyles['SleepAnalysisDisplay']['stageColors']) => (coding?: CodeableConcept | SleepType) => { codeType: "default" | "awake" | "deep" | "light" | "rem"; num: number; name: string; color: string; }; export declare const valToName: (value: number) => string; export type SleepType = ReturnType; declare const codeToType: (coding: CodeableConcept) => "default" | "awake" | "deep" | "light" | "rem"; declare const defaultStyles: (theme: import("../../BrandConfigProvider").Theme) => readonly ["SleepAnalysisDisplay", import("../../BrandConfigProvider/styles/createStyles").NamedStyles<{ stageColors: { awake: string; deep: string; light: string; rem: string; default: string; }; }>]; declare module './../../BrandConfigProvider/styles/types' { interface ComponentStyles extends ComponentNamedStyles { } } export {};