UNPKG

@patternfly/react-core

Version:

This library provides a set of common React components for use with the PatternFly reference implementation.

18 lines 751 B
import * as React from 'react'; import { ClipboardCopyProps } from './ClipboardCopy'; import { PickOptional } from '../../helpers/typeUtils'; export interface ClipboardCopyExpandedProps extends Omit<ClipboardCopyProps, 'onChange'> { className?: string; children: React.ReactNode; onChange?: (e: React.FormEvent<HTMLDivElement>, text: string) => void; isReadOnly?: boolean; isCode?: boolean; } declare class ClipboardCopyExpanded extends React.Component<ClipboardCopyExpandedProps> { static displayName: string; constructor(props: any); static defaultProps: PickOptional<ClipboardCopyExpandedProps>; render(): React.JSX.Element; } export { ClipboardCopyExpanded }; //# sourceMappingURL=ClipboardCopyExpanded.d.ts.map