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