import { RenderableProps } from "preact";
export declare function getOnlyChildAndChildren(props: RenderableProps<any>): {
    child: JSX.Element | null;
    children: JSX.Element[];
};
