import { ViewProps } from "@vnxjs/components/types/View";
import { ReactNode } from "react";
export interface SheetHeaderProps extends ViewProps {
title?: ReactNode;
children?: ReactNode;
}
export default function SheetHeader(props: SheetHeaderProps): JSX.Element;