mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-24 17:35:16 +00:00
9 lines
232 B
TypeScript
9 lines
232 B
TypeScript
import { ReactNode } from 'react';
|
|
declare type Props = {
|
|
children: ReactNode;
|
|
close?: () => void;
|
|
title?: string;
|
|
};
|
|
export declare const Content: ({ children, close, title, }: Props) => JSX.Element;
|
|
export {};
|