import * as React from 'react';
import type { SavedFormatting } from '../../state/formattings';
export interface FormattingListProps {
    formattings: SavedFormatting[];
    onSelect: (formatting: SavedFormatting) => void;
}
export declare const FormattingList: React.FC<FormattingListProps>;
