import React from 'react'; import { SubtitleGroupProps } from '@hyperOS/components/subtitleGroup'; import type { AccessibilityPropsType } from '../../../utils/accessibility-helper'; import { ColorType } from '../../styles/Styles'; import { SwitchProps } from '../../components/switch/interface'; export declare const CARD_HEADER_ACTION_TYPES: readonly ["navigate", "switch", "none", "custom"]; export declare type CardHeaderActionType = (typeof CARD_HEADER_ACTION_TYPES)[number]; export interface CardHeaderProps extends AccessibilityPropsType { title: string; subtitle?: string | React.ReactElement; leadingIcon?: React.ReactNode; actionType?: CardHeaderActionType; disabled?: boolean; onPress?: () => void; checked?: boolean; onChange?: (val: boolean) => void; colorType?: ColorType; switchOption?: SwitchProps; customRender?: React.ReactElement; badge?: boolean; value?: string; titleStatus?: string | React.ReactNode; }