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