/**
 * Apideck
 * The Apideck OpenAPI Spec: SDK Optimized
 *
 * The version of the OpenAPI document: 10.13.0
 * Contact: support@apideck.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 *
 * @export
 * @interface ProbationPeriod
 */
export interface ProbationPeriod {
    /**
     * The date that the employee started their probation period at the company.
     * @type {Date}
     * @memberof ProbationPeriod
     */
    start_date?: Date | null;
    /**
     * The date that the employee ended their probation period at the company.
     * @type {Date}
     * @memberof ProbationPeriod
     */
    end_date?: Date | null;
}
export declare function ProbationPeriodFromJSON(json: any): ProbationPeriod;
export declare function ProbationPeriodFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProbationPeriod;
export declare function ProbationPeriodToJSON(value?: ProbationPeriod | null): any;
