import { MessageFunctionType, Result } from '../types'; export interface IsMacAddressErrors { TARGET_ARGUMENT_NOT_A_STRING: MessageFunctionType; } export declare const IS_MAC_ADDRESS_ERRORS: IsMacAddressErrors; /** * Checks whether the `target` string is a valid MAC Address * * ### Example * ``` * expect(isMACAddress('ab:ab:ab:ab:ab:ab').value).toBeTruthy() * ``` * @param target The target string * @param options The options */ export declare function isMACAddress(target: string, options: any): Result;