import { UtamBasicElementType, UtamBasicElementTypeLiteral, UtamCustomElementType, UtamElementType, UtamFrameElementType, UtamStatementElementType } from '@utam/types'; export declare function isBasicElement(type: UtamElementType | UtamStatementElementType): type is UtamBasicElementType; export declare const VALID_CUSTOM_TYPE: RegExp; export declare const isCustomTypePredicate: (type: string) => boolean; export declare function isCustomType(type: UtamElementType): type is UtamCustomElementType; export declare function isContainerElement(value: UtamStatementElementType): boolean; export declare function isFrameElement(type: UtamElementType): type is UtamFrameElementType; export declare function wrapSingleBasicTypeInArray(type: UtamBasicElementType): UtamBasicElementTypeLiteral[]; //# sourceMappingURL=element-types.d.ts.map