import { Grid2Props } from "@mui/material"; import React from "react"; export type ShiftNavigatorDirection = "Previous" | "Next" | "Last"; export declare const ShiftDayNavigatorControl: ({ useRouter, onShiftChange, preventInit, withPaper, margin, assetId, ...props }: { useRouter?: boolean; onShiftChange?: (shiftId: number) => void; preventInit?: boolean; withPaper?: boolean; margin?: string; assetId?: number; } & Grid2Props) => React.JSX.Element;