@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
10 lines (9 loc) • 399 B
TypeScript
import React from 'react';
import { ObjectWithUniqueIdentifier } from '../../../../types';
interface AlterAddColumnProps extends ObjectWithUniqueIdentifier {
disabled?: boolean;
children?: React.ReactNode;
style?: React.CSSProperties;
}
export declare const AlterAddColumn: ({ id, disabled, children, style, }: AlterAddColumnProps) => import("react/jsx-runtime").JSX.Element;
export {};