/// <reference types="react" />
import { Channel } from '@storybook/channels';
import { API } from '@storybook/api';
interface PropsTableProps {
    active: boolean;
    channel: Channel;
    api: API;
    legacy: string;
}
export declare const PropsTable: {
    (props: PropsTableProps): JSX.Element | null;
    defaultProps: {
        legacy: string;
    };
};
export {};
