import React from 'react';
export interface ItalicTransProps {
    titleKey: string;
    italicKey: string;
}
/**
 * Creates a Trans body with one part regular and one part *italic*
 * @param param Props to pass to the ItalicTrans component
 * @example
 * ```jsx
 * <ItalicTrans titleKey='sample.key.normal' italicKey='sample.key.italic'/>
 * ```
 */
export declare const ItalicTrans: React.MemoExoticComponent<({ titleKey, italicKey }: ItalicTransProps) => JSX.Element>;
//# sourceMappingURL=index.d.ts.map