export type LockExpression = 'success' | 'warning' | 'error'; /** Width of each lock art line (all lines are the same width). */ export declare const LOCK_WIDTH = 9; export declare function getLockArt(expression: LockExpression, color?: boolean): string[];