oak-general-business/lib/components/config/style/index.d.ts

9 lines
269 B
TypeScript

/// <reference types="react" />
import { Style as StyleType } from '../../../types/Style';
declare type StyleProps = {
value?: StyleType | null;
onChange: (value: StyleType) => void;
};
export default function Render(props: StyleProps): JSX.Element;
export {};