import { IdOptions } from './types.js';
export declare function getNewIdWithShortName(shortName: string, opts?: {
    id?: string;
} & Pick<IdOptions, 'nanoidLength' | 'shortNamePaddingChar' | 'shortNameIdSeparator'>): string;
