import { Color } from '../../interface'; export declare class CardHeader { /** * The color to use from the Liberty color palette. * Default options are: `'primary', 'primary_darkest', 'primary_darker', 'primary_dark', 'primary_light', 'primary_lighter', 'primary_lightest', 'neutral', 'neutral_darker', 'neutral_darkest', 'neutral_light', 'neutral_lighter', 'neutral_lightest', 'ruby', 'official', 'warning', 'error', 'success', 'success_light', 'mustard'`. */ color?: Color; /** * If `true`, the card header will be translucent. */ translucent: boolean; hostData(): { class: { 'card-header-translucent': boolean; }; }; render(): any; }