import AisMessage from './messages/ais-message'; interface AisParserOptions { raw: boolean; checksum: boolean; } declare class AisParser { options: AisParserOptions; constructor(options?: AisParserOptions); parse(message: string): AisMessage; } export default AisParser;