import { ReactElement } from 'react'; export type FontSizeOption = number | undefined; export interface FontSizeSelectorProps { value: FontSizeOption; onChange: (fontSize: FontSizeOption) => void; } export declare function FontSizeSelector({ value, onChange }: FontSizeSelectorProps): ReactElement; //# sourceMappingURL=FontSizeSelector.d.ts.map