import * as React from "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) => React.JSX.Element;
