UNPKG

@kwiz/fluentui

Version:

KWIZ common controls for FluentUI

16 lines (15 loc) 441 B
import React from 'react'; interface iProps { onSelect?: (diagram: { url: string; name: string; }) => void; onSelectBase64?: (diagram: string) => void; trigger?: JSX.Element; hiRes?: boolean; onlyTransparent?: boolean; } export declare const DiagramPicker: (props: iProps & { children?: React.ReactNode | undefined; } & React.RefAttributes<HTMLDivElement>) => React.JSX.Element | null; export {};