import React, { ReactNode } from 'react';
type Props = {
    children?: ReactNode;
};
declare const FontsChoosing: ({ children, ...rest }: Props) => React.JSX.Element;
export default FontsChoosing;
