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

8 lines
265 B
TypeScript

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