/// import type { SecondaryDropdownProps } from '../../@unbounce/ui-components'; interface Props { value: string; id: string; onUpdate: (newData: { family: string; weight: number; }) => void; fontWeight?: number; label?: string; secondaryDropdownOptions?: SecondaryDropdownProps; listOfAddedBrandFonts?: string[]; } export declare const FontFamilyPicker: ({ value, fontWeight, label, id, onUpdate, secondaryDropdownOptions, listOfAddedBrandFonts, }: Props) => JSX.Element; export {};