import { ReactNode } from 'react'; interface CustomWrapperProps { id?: string; children?: ReactNode; } export declare const CustomWrapper: ((props: CustomWrapperProps) => import("react/jsx-runtime").JSX.Element) | import("react").ComponentType; export default CustomWrapper;