import React from 'react';
import { BoxProps } from '@mantine/core';
export type LastPeriodFormValue = {
    lastPeriodDate?: Date;
    periodLength?: number;
};
export declare const LastPeriodForm: ({}: BoxProps) => React.JSX.Element;
