export interface StyleSettingProps { blockType: string; enabledStyles?: { [styleIdentifier: string]: Array; }; values: { [styleIdentifier: string]: string; }; onChange: (optionIdentifier: string, styleIdentifier: string) => void; } export declare const StyleSettings: (props: StyleSettingProps) => import("react/jsx-runtime").JSX.Element;