///
/**
* 周状态栏中的标题组件属性
*/
interface WeekTitleProps {
/**
* 标题所属的列
*/
$column: number;
/**
* 是否是 pc 设备
*/
$isPc?: boolean;
}
/**
* 周状态栏中的标题
*
* @param props 组件属性
* @param props.theme 主题
* @param props.$column 标题所属的列
* @param props.$isPc 是否是 pc 设备
*/
declare const WeekTitle: import("styled-components").StyledComponent & import("react").RefAttributes>, import("styled-components").DefaultTheme, WeekTitleProps, never>;
export default WeekTitle;