import React from 'react';
export type Props = {
    legalTextType: 'community' | 'default';
    trackingCategory: string;
    trackingAction: string;
};
declare const PolicyContent: ({ legalTextType, trackingCategory, trackingAction, }: Props) => React.JSX.Element;
export default PolicyContent;
