///
import type { SecondaryDropdownProps } from '../@unbounce/ui-components';
import type { FamilyUpdateValue } from './components/types';
interface Props {
family: string;
onFamilyChange: (value: FamilyUpdateValue) => void;
weight: number;
onWeightChange: (value: string) => void;
size: string;
onSizeChange: (value: string) => void;
secondaryDropdownOptions?: SecondaryDropdownProps;
listOfAddedBrandFonts?: string[];
}
export declare const FontControls: ({ family, onFamilyChange, weight, onWeightChange, size, onSizeChange, secondaryDropdownOptions, listOfAddedBrandFonts, }: Props) => JSX.Element;
export {};