Panel.d.ts 361 B

1234567
  1. import React from 'react';
  2. import type { InternalPanelProps, PanelProps } from './interface';
  3. export declare const InternalPanel: React.ForwardRefExoticComponent<InternalPanelProps & {
  4. children?: React.ReactNode | undefined;
  5. } & React.RefAttributes<HTMLDivElement>>;
  6. declare const Panel: React.FC<React.PropsWithChildren<PanelProps>>;
  7. export default Panel;