import React from "react"; declare const getShiftStyle: (shift: string) => { color: string; } | { color?: undefined; }; declare const getCrewStyle: (crew: string) => { color: string; } | { color?: undefined; }; declare const GetShiftColor: (props: any) => React.JSX.Element; declare const GetCrewColor: (props: any) => React.JSX.Element; export { getShiftStyle, getCrewStyle, GetShiftColor, GetCrewColor };