import { Option } from "../.."; export declare const sq: (x: number) => Option; export declare const nope: (_: number) => Option; export interface Vehicle { driver: Option<{ contact: Option<{ name: Option; }>; }>; } export declare const getDriverName: (vehicle: Vehicle) => Option;