mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-22 05:27:56 +00:00
10 lines
314 B
TypeScript
10 lines
314 B
TypeScript
import React from 'react';
|
|
interface Props {
|
|
className?: string;
|
|
offset?: number | string;
|
|
onClose: () => void;
|
|
}
|
|
declare function Endpoints({ className, offset, onClose }: Props): React.ReactElement<Props>;
|
|
declare const _default: React.MemoExoticComponent<typeof Endpoints>;
|
|
export default _default;
|