import { PropsWithChildren } from 'react'; import { ChildAttributesItem } from '../types'; export declare class ChildComponent { elementAttributes?: (props: PropsWithChildren) => (ChildAttributesItem | void); content?: (props: PropsWithChildren) => any; }