/// <reference types="react" />
import { CssPropertyItemGroup } from "./types";
export interface CssPropsTableProps {
    customProperties: CssPropertyItemGroup;
    presetColors?: string[];
    storyId?: string;
    inAddonPanel?: boolean;
}
export declare const CssPropsTable: ({ customProperties, presetColors, storyId, inAddonPanel, }: CssPropsTableProps) => JSX.Element;
