export declare class Passcodes {
    /**
    * The passcode for the Admin menu and the Settings menu.
    */
    'adminMenuPin'?: string;
    /**
    * The passcode for referenced and unreferenced refunds on standalone terminals.
    */
    'refundPin'?: string;
    /**
    * The passcode to unlock the terminal screen after a timeout.
    */
    'screenLockPin'?: string;
    /**
    * The passcode for the Transactions menu.
    */
    'txMenuPin'?: string;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
