import { LSAwP, LSA } from "../types"; export declare enum StringCreatorKeys { CONCAT = "CONCAT" } export declare type StringCreators = { concat(str: string): LSAwP; }; export declare type StringActions = ReturnType[KeyT]>; export declare function isConcatActionString(action: LSA): action is StringActions<'concat'>;