function Separator(_props) {
    return null;
}
Separator.getCollectionNode = function* getCollectionNode(props, _context) {
    let rendered = props.children;
    yield {
        type: 'seperator',
        props: props,
        rendered,
    };
};
Separator.displayName = 'Separator';
export { Separator };
//# sourceMappingURL=Separator.jsx.map