database-petani-mobile/node_modules/react-leaflet/lib/Pane.d.ts
2026-02-23 16:39:35 +07:00

10 lines
318 B
TypeScript

import React, { type CSSProperties, type ReactNode } from 'react';
export interface PaneProps {
children?: ReactNode;
className?: string;
name: string;
pane?: string;
style?: CSSProperties;
}
export declare const Pane: React.ForwardRefExoticComponent<PaneProps & React.RefAttributes<HTMLElement>>;