import { BarcodeFormatsType } from '../interface/BarcodeFormat'; export declare enum CardSides { FRONT = 0, BOTH = 1 } export interface CardType { cardName: string; captureSide: CardSides; cardType: number; } export declare class Preset { /** * This method returns all the cards list * @returns - List of cards available to scan to the end user */ getCardsList: () => string[]; /** * To find the side of the Card * @param cardType - Type of the Card * @returns - Side of the Card */ findCardSide: (cardType: string) => CardSides; /** * To find the card type parameter to define type of card * @param cardType - Card Input type as provided * @returns - cardType number */ findCardType: (cardType: string) => number; /** * This method Returns all cards list * @returns - All cards list */ getAllCards: () => CardType[]; /** * To get the list of barcode supported by the package. * @returns - supported Barcodes List */ getBarcodeList: () => BarcodeFormatsType[]; }