import String from './string/string'; import Prefix from './prefix/prefix'; /** * remove {@param prefix} at the start of {@param value} */ export declare function RemovePrefixParameters(value: string, prefix?: string): string; export declare type RemovePrefixArgument = String & Partial; /** * remove {@param prefix} at the start of {@param value} */ export declare function RemovePrefixParameter({ string, prefix }: RemovePrefixArgument): string; declare namespace RemovePrefix { const Parameters: typeof RemovePrefixParameters; const Parameter: typeof RemovePrefixParameter; } export default RemovePrefix; //# sourceMappingURL=remove-prefix.d.ts.map