import type { TSESTree } from '../../ts-estree'; type IsSpecificTokenFunction = (token: TSESTree.Token) => token is SpecificToken; type IsNotSpecificTokenFunction = (token: TSESTree.Token) => token is Exclude; type PunctuatorTokenWithValue = { value: Value; } & TSESTree.PunctuatorToken; type IsPunctuatorTokenWithValueFunction = IsSpecificTokenFunction>; type IsNotPunctuatorTokenWithValueFunction = IsNotSpecificTokenFunction>; export declare const isArrowToken: IsPunctuatorTokenWithValueFunction<'=>'>; export declare const isNotArrowToken: IsNotPunctuatorTokenWithValueFunction<'=>'>; export declare const isClosingBraceToken: IsPunctuatorTokenWithValueFunction<'}'>; export declare const isNotClosingBraceToken: IsNotPunctuatorTokenWithValueFunction<'}'>; export declare const isClosingBracketToken: IsPunctuatorTokenWithValueFunction<']'>; export declare const isNotClosingBracketToken: IsNotPunctuatorTokenWithValueFunction<']'>; export declare const isClosingParenToken: IsPunctuatorTokenWithValueFunction<')'>; export declare const isNotClosingParenToken: IsNotPunctuatorTokenWithValueFunction<')'>; export declare const isColonToken: IsPunctuatorTokenWithValueFunction<':'>; export declare const isNotColonToken: IsNotPunctuatorTokenWithValueFunction<':'>; export declare const isCommaToken: IsPunctuatorTokenWithValueFunction<','>; export declare const isNotCommaToken: IsNotPunctuatorTokenWithValueFunction<','>; export declare const isCommentToken: IsSpecificTokenFunction; export declare const isNotCommentToken: IsNotSpecificTokenFunction; export declare const isOpeningBraceToken: IsPunctuatorTokenWithValueFunction<'{'>; export declare const isNotOpeningBraceToken: IsNotPunctuatorTokenWithValueFunction<'{'>; export declare const isOpeningBracketToken: IsPunctuatorTokenWithValueFunction<'['>; export declare const isNotOpeningBracketToken: IsNotPunctuatorTokenWithValueFunction<'['>; export declare const isOpeningParenToken: IsPunctuatorTokenWithValueFunction<'('>; export declare const isNotOpeningParenToken: IsNotPunctuatorTokenWithValueFunction<'('>; export declare const isSemicolonToken: IsPunctuatorTokenWithValueFunction<';'>; export declare const isNotSemicolonToken: IsNotPunctuatorTokenWithValueFunction<';'>; export {};