import { ExtractPropTypes, PropType } from 'vue';
import { ConfigurableProps } from '@vexip-ui/config';
export declare const highlightProps: {
    inherit: PropType<boolean>;
    content: PropType<string>;
    keyWords: PropType<string[]>;
    ignoreCase: PropType<boolean>;
};
export type HighlightProps = ExtractPropTypes<typeof highlightProps>;
export type HighlightCProps = ConfigurableProps<HighlightProps, 'content' | 'keyWords'>;
