import { API } from '@storybook/api';
import { FunctionComponent } from 'react';
export interface Fontsize {
    value: number;
    title: string;
}
interface Props {
    api: API;
}
declare const Tool: FunctionComponent<Props>;
export default Tool;
